home *** CD-ROM | disk | FTP | other *** search
/ Ray Dream Studio / Ray Dream Studio (CDRAYD1) (Ray Dream) (1995).iso / DREAMSDK.WIN / INCLUDE / XTBAPI.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-09-10  |  523 b   |  27 lines  |  [TEXT/mdos]

  1. //$Id: XTBAPI.H 1.4 1995/09/08 19:48:20 psq-pc Exp $
  2.  
  3. #ifndef __XTBAPI__
  4. #define __XTBAPI__
  5.  
  6. #ifndef __MTYPES__
  7. #include "MTypes.h"
  8. #endif
  9.  
  10. class TimeBaseData;
  11. class XTimeBased;
  12. class TModule;
  13.  
  14. class XTimeBasedPutVirtualTableFirst { //for MPW
  15. private:
  16.     virtual void DontCallMe() = 0; //can't really be more specific
  17.     };
  18.       
  19. class XTimeBased : public XTimeBasedPutVirtualTableFirst {
  20. private:
  21.     TimeBaseData *fTimeBasedData;
  22.     friend class TimeBaseData; 
  23.     friend class MTimeBased; //temp
  24.     };
  25.  
  26. #endif
  27.